home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxstate.h < prev    next >
C/C++ Source or Header  |  1996-12-04  |  3KB  |  77 lines

  1. /* Copyright (C) 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxstate.h */
  20. /* Internal graphics state API */
  21.  
  22. #ifndef gxstate_INCLUDED
  23. #  define gxstate_INCLUDED
  24.  
  25. /* Opaque type for a graphics state */
  26. #ifndef gs_state_DEFINED
  27. #  define gs_state_DEFINED
  28. typedef struct gs_state_s gs_state;
  29. #endif
  30.  
  31. /*
  32.  * The interfaces in this file are for internal use only, primarily by the
  33.  * interpreter.  They are not guaranteed to remain stable from one release
  34.  * to another.
  35.  */
  36.  
  37. /* Memory and save/restore management */
  38. gs_memory_t *gs_state_memory(P1(const gs_state *));
  39. gs_state *gs_state_saved(P1(const gs_state *));
  40. gs_state *gs_state_swap_saved(P2(gs_state *, gs_state *));
  41. gs_memory_t *gs_state_swap_memory(P2(gs_state *, gs_memory_t *));
  42.  
  43. /*
  44.  * "Client data" interface for graphics states.
  45.  *
  46.  * As of release 4.36, the copy procedure is superseded by copy_for
  47.  * (although it will still be called if there is no copy_for procedure).
  48.  */
  49. typedef void *(*gs_state_alloc_proc_t)(P1(gs_memory_t *mem));
  50. typedef int (*gs_state_copy_proc_t)(P2(void *to, const void *from));
  51. typedef void (*gs_state_free_proc_t)(P2(void *old, gs_memory_t *mem));
  52. typedef enum {
  53.   copy_for_gsave,        /* from = current, to = new(saved) */
  54.   copy_for_grestore,        /* from = saved, to = current */
  55.   copy_for_gstate,        /* from = current, to = new(copy) */
  56.   copy_for_setgstate,        /* from = stored, to = current */
  57.   copy_for_copygstate,        /* from & to are specified explicitly */
  58.   copy_for_currentgstate    /* from = current, to = stored */
  59. } gs_state_copy_reason_t;
  60. /* Note that the 'from' argument of copy_for is not const. */
  61. /* This is deliberate -- some clients need this. */
  62. typedef int (*gs_state_copy_for_proc_t)(P3(void *to, void *from,
  63.                        gs_state_copy_reason_t reason));
  64. typedef struct gs_state_client_procs_s {
  65.     gs_state_alloc_proc_t alloc;
  66.     gs_state_copy_proc_t copy;
  67.     gs_state_free_proc_t free;
  68.     gs_state_copy_for_proc_t copy_for;
  69. } gs_state_client_procs;
  70. void    gs_state_set_client(P3(gs_state *, void *, const gs_state_client_procs *));
  71. /* gzstate.h redefines the following: */
  72. #ifndef gs_state_client_data
  73. void *gs_state_client_data(P1(const gs_state *));
  74. #endif
  75.  
  76. #endif                    /* gxstate_INCLUDED */
  77.